home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Tools 2
/
Amiga Tools 2.iso
/
tools
/
mg
/
rexx
/
append.mg
next >
Wrap
Text File
|
1995-03-09
|
296b
|
12 lines
/* Append a buffer to a file. Note! This only works with WShell. */
options results
'rexx-request "Append to file: "'
if rc~=0 then exit
filename=result
tmpname='T:'||time(s)||pragma(id)
'write-file "'||tmpname||'"'
address command 'type >>'||filename tmpname
address command 'delete' tmpname